home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 August: Tool Chest / Dev.CD Aug 95 TC / Dev.CD Aug 95 TC.toast / New System Software Extensions / QuickDraw™ GX 1.1.2 / Programming Stuff / Sample Code / Printing Samples / Extensions… / Confidential ƒ / Confidential.make < prev    next >
Encoding:
Text File  |  1995-04-10  |  1.4 KB  |  55 lines  |  [TEXT/MPS ]

  1. #    File:        Confidential.make
  2. #   Target:     Confidential
  3. #   Sources:    Confidential.a Confidential.c Confidential.r
  4. #   Created:    Monday, Feb. 1, 1993 2:34:56 PM
  5. #
  6. #    Makefile for a printing extension that stamps a
  7. #    message on each page spooled.
  8. #    
  9. #    Dave Hersey
  10. #    Apple Developer Technical Support
  11. #
  12. #    2/01/93  - dmh - Completely rewrote for the a5 seed.
  13. #    4/26/93  - dmh - For b1 - removed ! from filenames because
  14. #                     they were killing BuildProgram…
  15. #    9/05/93  - dmh - Updated for b2.
  16. #  12/18/93  - dmh - Updated for b3.
  17. #    8/24/94     - dmh - finalized.
  18. #
  19.  
  20. # Our creator type:
  21.  
  22. kCreator = 'CON!'
  23.  
  24.  
  25. #    Alias to the path for the GX interface files.
  26.  
  27. INTPATH = {CIncludes}
  28.  
  29.  
  30. #    Alias to the compiled files and the assembly/C options we
  31. #    want to use.
  32.  
  33. OBJECTS = Confidential.a.o Confidential.c.o
  34. AsmOptions        = -sym off -i {INTPATH} -case obj
  35. CompileOptions    = -sym off -i {INTPATH} -mbg off -b2
  36.  
  37.  
  38. Confidential.a.o ƒ Confidential.make Confidential.a
  39.      Asm {AsmOptions} Confidential.a
  40. Confidential.c.o ƒ Confidential.make Confidential.c Confidential.h
  41.      C {CompileOptions} -r  Confidential.c
  42.  
  43. Confidential ƒƒ Confidential.make Confidential.r {OBJECTS}
  44.     Link    -ra =resSysHeap,resPurgeable    ∂
  45.             -t 'pext'                        ∂
  46.             -c {kCreator}                    ∂
  47.             -rt pext=0                        ∂
  48.             -sg SEGS                        ∂
  49.             -m EntryPoint                     ∂
  50.             {OBJECTS}                        ∂
  51.             "{Libraries}Interface.o"        ∂
  52.             -o Confidential;
  53.     SetFile Confidential -a iB;
  54.     Rez -i {INTPATH} -rd -o Confidential Confidential.r -append 
  55.